home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / rexx / 900 < prev    next >
Encoding:
Internet Message Format  |  1996-08-06  |  851 b 

  1. Path: news-2.csn.net!usenet
  2. From: ctodd@Magiclink.com
  3. Newsgroups: comp.lang.rexx
  4. Subject: Closing a File?
  5. Date: 24 Feb 1996 03:22:40 GMT
  6. Organization: SuperNet Inc. (303)-296-8202 Denver Colorado
  7. Distribution: inet
  8. Message-ID: <4gm0a0$cjl@news-2.csn.net>
  9. Reply-To: ctodd@Magiclink.com
  10. NNTP-Posting-Host: 199.104.22.101
  11. X-Newsreader: IBM NewsReader/2 v1.2
  12.  
  13. I am A NEW REXX programmer.  I have a Pascal background.
  14. My Problem is I am using a temp file and I want to delete it.
  15. { Example }
  16.  
  17. 'procs >'||tempfile
  18. do while lines(tempfile) > 0
  19.    say linein(tempfile)
  20.    end
  21. call lineout tempfile   <------- This line will not compile.
  22. 'erase '||tempfile
  23.  
  24. The Documentation say the lineout call will Close the file.  But Alas,
  25. erase fails with a exclusive access problem. (rexx still has the file open)
  26.  
  27. What do I do?
  28.  
  29. Chuck Todd
  30. at Warp with Speed Pascal/2
  31.